home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / Compression / AutoBin w⁄src / DSGlobals.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-09  |  1.9 KB  |  71 lines  |  [TEXT/MPS ]

  1. /******************************************************************************
  2. **
  3. **  Project Name:    DropShell
  4. **     File Name:    DSGlobals.h
  5. **
  6. **   Description:    Globals used by DropShell
  7. **
  8. *******************************************************************************
  9. **                       A U T H O R   I D E N T I T Y
  10. *******************************************************************************
  11. **
  12. **    Initials    Name
  13. **    --------    -----------------------------------------------
  14. **    LDR            Leonard Rosenthol
  15. **    MTC            Marshall Clow
  16. **    SCS            Stephan Somogyi
  17. **
  18. *******************************************************************************
  19. **                      R E V I S I O N   H I S T O R Y
  20. *******************************************************************************
  21. **
  22. **      Date        Time    Author    Description
  23. **    --------    -----    ------    ---------------------------------------------
  24. **    12/09/91            LDR        Added gSplashScreen
  25. **    11/24/91            LDR        Added some new #defs & a #inc for DSUtils
  26. **    10/29/91            SCS        Changes for THINK C 5
  27. **    10/28/91            LDR        Officially renamed DropShell (from QuickShell)
  28. **    10/06/91    00:02    MTC        Converted to MPW C
  29. **    04/09/91    00:03    LDR        Added to Projector
  30. **
  31. ******************************************************************************/
  32.  
  33. #pragma once
  34.  
  35. #ifndef    __DSGLOBALS_H__
  36. #define    __DSGLOBALS_H__
  37.  
  38. #ifndef THINK_C
  39.     #include <Types.h>
  40.     #include <Memory.h>
  41.     #include <QuickDraw.h>
  42.     #include <OSUtils.h>
  43.     #include <ToolUtils.h>
  44.     #include <Menus.h>
  45.     #include <Packages.h>
  46.     #include <Traps.h>
  47.     #include <Files.h>
  48. #endif
  49.  
  50. #include <Aliases.h>
  51. #include <AppleEvents.h>
  52. #include <GestaltEqu.h>
  53. #include <Processes.h>
  54.  
  55.  
  56. #define    kAppleNum    128
  57. #define    kFileNum    129
  58.         
  59. #define    kErrStringID    100
  60. #define    kCantRunErr        1
  61. #define    kAEVTErr        2
  62.         
  63.         
  64. extern Boolean        gDone, gOApped, gHasAppleEvents, gWasEvent;
  65. extern EventRecord    gEvent;
  66. extern MenuHandle    gAppleMenu, gFileMenu;
  67. extern WindowPtr    gSplashScreen;
  68. extern short         gRefNum;
  69. extern Byte NewLine[4];
  70. #endif    __DSGLOBALS_H__
  71.